how to use where relationship laravel

62

how to use where relationship laravel -

Event::with(["owner", "participants" => function($q) use($someId){
    $q->where('participants.IdUser', '=', 1);
    //$q->where('some other field', $someId);
}])

Comments

Submit
0 Comments